ECL Summary Reading

This notebook is intended to be used for reading and plotting data from ECLIPSE summary files, i.e. UNSMRY and SMSPEC files, thus it can also be used to read the files written by the Flow reservoir simulator.

Requirements

This notebook uses the ecl_sum module from the ecl library in the ERT package.

File paths


In [2]:
summary_path = '/home/einar/fieldopt_output/5SPOT'

Imports


In [3]:
from ert.ecl import ecl_sum
import numpy as np
from matplotlib import pyplot


---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-3-aacb459855c5> in <module>()
----> 1 from ert.ecl import ecl_sum
      2 import numpy as np
      3 from matplotlib import pyplot

ImportError: No module named 'ert'

In [ ]: